home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc™ Source Code / DocShell / ShlMain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  670 b   |  44 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ShlMain.h
  3.  
  4.     Contains:    just enough to create and run a SOM Shell object
  5.  
  6.     Owned by:    Tantek Çelik
  7.  
  8.     Copyright:    © 1994 - 1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.     
  12.          <3>     5/25/95    jpa        Added #pragma import
  13.          <2>     8/16/94    TÇ        #1181231 Settings & ShPlugIn were not being
  14.                                     generated correctly
  15.          <1>      8/11/94    eeh        first checked in
  16.  
  17.     To Do:
  18.     In Progress:
  19.         
  20. */
  21.  
  22. #ifndef _SHLMAIN_
  23. #define _SHLMAIN_
  24.  
  25.  
  26. #ifdef PRAGMA_IMPORT_SUPPORTED
  27. #pragma import on
  28. #endif
  29.  
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33.  
  34. int ShellMain();
  35.  
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39.  
  40. #ifdef PRAGMA_IMPORT_SUPPORTED
  41. #pragma import off
  42. #endif
  43.  
  44. #endif